Can AI Recognize You? body { margin: 0; padding: 0; background-color: #000; color: #fff; font-family: Arial, sans-serif; } #ai-quiz { width: 100%; max-width: 1200px; margin: 20px auto; padding: 20px; box-sizing: border-box; } h2 { text-align: center; margin-bottom: 30px; color: #fff; } /* Container for questions in a single column */ .questions-container { display: block; } .question-box { background: #1a1a1a; border: 1px solid #444; border-radius: 8px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); padding: 20px; margin-bottom: 20px; box-sizing: border-box; width: 100%; } .question-box p { margin: 0 0 15px 0; font-size: 18px; font-weight: bold; } .question-number { display: inline-block; background: #c1205b; color: #fff; width: 30px; height: 30px; text-align: center; line-height: 30px; border-radius: 50%; margin-right: 10px; font-size: 16px; } label { display: block; margin-bottom: 8px; font-size: 16px; cursor: pointer; padding: 4px; border-radius: 4px; } label:hover { background-color: #333; } input[type="radio"] { margin-right: 8px; cursor: pointer; } .submit-container { text-align: center; width: 100%; margin-top: 20px; } .submit-button { padding: 12px 20px; font-size: 18px; color: #fff; background-color: #c1205b; border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.3s ease; } .submit-button:hover { background-color: #a51549; } #result { margin-top: 20px; padding: 20px; border: 2px solid #c1205b; border-radius: 8px; background-color: #1a1a1a; display: none; text-align: center; } #result h3 { margin-bottom: 10px; color: #c1205b; } 🤖 Can AI Recognize You? 1How often do you post on social media? Several times a day Once a day A few times a week Rarely or never 2How detailed is your online profile? Extremely detailed with lots of personal data Fairly detailed Basic information Minimal or anonymous 3How actively do you engage in online communities? Highly active and very visible Participate regularly Occasionally comment or share Prefer lurking without engagement 4How consistent is your personal branding across platforms? Consistent and distinct Mostly consistent Somewhat inconsistent Completely varied personas 5How frequently do you update your digital content (e.g., blogs, photos)? Very frequently Occasionally Rarely Almost never 6How recognizable is your online writing or style? Very distinctive and memorable Moderately recognizable Not very noticeable Hardly distinguishable 7How comfortable are you with sharing personal opinions online? Extremely comfortable Somewhat comfortable Occasionally share Prefer to keep opinions private 8How do you handle your privacy settings? I leave most settings public I adjust some settings I mostly keep privacy on I use the strictest privacy settings 9How often do you interact with online advertisements or tracking content? Almost every time Often, with noticeable engagement Sometimes, but not much I actively avoid them 10How unique is your overall online behavior? I have a very unique digital signature I am fairly unique I am pretty average My behavior is very hard to track Finish Quiz Result: function calculateResult() { const form = document.forms.quizForm; const questions = ["q1", "q2", "q3", "q4", "q5", "q6", "q7", "q8", "q9", "q10"]; let totalScore = 0; questions.forEach(q => { let options = form[q]; for (let i = 0; i < options.length; i++) { if (options[i].checked) { totalScore += parseInt(options[i].value); } } }); let resultMessage = ""; // Maximum possible score is 30, minimum is 0. if (totalScore >= 25) { resultMessage = "Ultra Recognizable: AI instantly identifies you! Your digital footprint is bold, vivid, and unmistakable."; } else if (totalScore >= 15) { resultMessage = "Moderately Recognizable: AI has a fair idea of who you are, but there's still some mystery about you."; } else { resultMessage = "Hard to Pin Down: AI struggles to pinpoint your digital identity. Your online persona is intriguingly mysterious!"; } document.getElementById("resultText").innerText = `Your score: ${totalScore}/30. ${resultMessage}`; document.getElementById("result").style.display = "block"; }